package hacky.filebased.agent;

import org.junit.Test;

public class FileUtilitiesTest {
    private void createFileNamed(String name) {
        FileUtilities.writeClassFile(new File("."), name, new byte[] {});
    }

    @Test
    public void tempDirectoryExistsAsFileIsRemovedAndRecreatedAsDirectory() {
    }

    @Test
    public void tempDirectoryExistsAsDirectoryThatIsEmptyAndIsRecreatedAsEmptyDirectory() {
    }

    @Test
    public void tempDirectoryExistsAsDirectoryWithFilesAndIsRecreatedAsEmptyDirectory() {
    }
}
